home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / appcomps / nsIHTTPIndex.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  4.3 KB  |  146 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIHTTPIndex.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIHTTPIndex_h__
  6. #define __gen_nsIHTTPIndex_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. class nsIStreamListener; /* forward declaration */
  18.  
  19. class nsIRDFDataSource; /* forward declaration */
  20.  
  21. class nsIRDFNode; /* forward declaration */
  22.  
  23. class nsIRDFResource; /* forward declaration */
  24.  
  25.  
  26. /* starting interface:    nsIHTTPIndex */
  27. #define NS_IHTTPINDEX_IID_STR "6f2bdbd0-58c3-11d3-be36-00104bde6048"
  28.  
  29. #define NS_IHTTPINDEX_IID \
  30.   {0x6f2bdbd0, 0x58c3, 0x11d3, \
  31.     { 0xbe, 0x36, 0x00, 0x10, 0x4b, 0xde, 0x60, 0x48 }}
  32.  
  33. class NS_NO_VTABLE nsIHTTPIndex : public nsISupports {
  34.  public: 
  35.  
  36.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IHTTPINDEX_IID)
  37.  
  38.   /**
  39.      * The base URL of the HTTP index
  40.      */
  41.   /* readonly attribute string BaseURL; */
  42.   NS_IMETHOD GetBaseURL(char * *aBaseURL) = 0;
  43.  
  44.   /**
  45.      * The RDF datasource that contains the HTTP index information.
  46.      */
  47.   /* readonly attribute nsIRDFDataSource DataSource; */
  48.   NS_IMETHOD GetDataSource(nsIRDFDataSource * *aDataSource) = 0;
  49.  
  50.   /**
  51.      * The charset to use for decoding FTP filenames
  52.      */
  53.   /* attribute string encoding; */
  54.   NS_IMETHOD GetEncoding(char * *aEncoding) = 0;
  55.   NS_IMETHOD SetEncoding(const char * aEncoding) = 0;
  56.  
  57. };
  58.  
  59. /* Use this macro when declaring classes that implement this interface. */
  60. #define NS_DECL_NSIHTTPINDEX \
  61.   NS_IMETHOD GetBaseURL(char * *aBaseURL); \
  62.   NS_IMETHOD GetDataSource(nsIRDFDataSource * *aDataSource); \
  63.   NS_IMETHOD GetEncoding(char * *aEncoding); \
  64.   NS_IMETHOD SetEncoding(const char * aEncoding); 
  65.  
  66. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  67. #define NS_FORWARD_NSIHTTPINDEX(_to) \
  68.   NS_IMETHOD GetBaseURL(char * *aBaseURL) { return _to GetBaseURL(aBaseURL); } \
  69.   NS_IMETHOD GetDataSource(nsIRDFDataSource * *aDataSource) { return _to GetDataSource(aDataSource); } \
  70.   NS_IMETHOD GetEncoding(char * *aEncoding) { return _to GetEncoding(aEncoding); } \
  71.   NS_IMETHOD SetEncoding(const char * aEncoding) { return _to SetEncoding(aEncoding); } 
  72.  
  73. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  74. #define NS_FORWARD_SAFE_NSIHTTPINDEX(_to) \
  75.   NS_IMETHOD GetBaseURL(char * *aBaseURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBaseURL(aBaseURL); } \
  76.   NS_IMETHOD GetDataSource(nsIRDFDataSource * *aDataSource) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDataSource(aDataSource); } \
  77.   NS_IMETHOD GetEncoding(char * *aEncoding) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEncoding(aEncoding); } \
  78.   NS_IMETHOD SetEncoding(const char * aEncoding) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEncoding(aEncoding); } 
  79.  
  80. #if 0
  81. /* Use the code below as a template for the implementation class for this interface. */
  82.  
  83. /* Header file */
  84. class nsHTTPIndex : public nsIHTTPIndex
  85. {
  86. public:
  87.   NS_DECL_ISUPPORTS
  88.   NS_DECL_NSIHTTPINDEX
  89.  
  90.   nsHTTPIndex();
  91.  
  92. private:
  93.   ~nsHTTPIndex();
  94.  
  95. protected:
  96.   /* additional members */
  97. };
  98.  
  99. /* Implementation file */
  100. NS_IMPL_ISUPPORTS1(nsHTTPIndex, nsIHTTPIndex)
  101.  
  102. nsHTTPIndex::nsHTTPIndex()
  103. {
  104.   /* member initializers and constructor code */
  105. }
  106.  
  107. nsHTTPIndex::~nsHTTPIndex()
  108. {
  109.   /* destructor code */
  110. }
  111.  
  112. /* readonly attribute string BaseURL; */
  113. NS_IMETHODIMP nsHTTPIndex::GetBaseURL(char * *aBaseURL)
  114. {
  115.     return NS_ERROR_NOT_IMPLEMENTED;
  116. }
  117.  
  118. /* readonly attribute nsIRDFDataSource DataSource; */
  119. NS_IMETHODIMP nsHTTPIndex::GetDataSource(nsIRDFDataSource * *aDataSource)
  120. {
  121.     return NS_ERROR_NOT_IMPLEMENTED;
  122. }
  123.  
  124. /* attribute string encoding; */
  125. NS_IMETHODIMP nsHTTPIndex::GetEncoding(char * *aEncoding)
  126. {
  127.     return NS_ERROR_NOT_IMPLEMENTED;
  128. }
  129. NS_IMETHODIMP nsHTTPIndex::SetEncoding(const char * aEncoding)
  130. {
  131.     return NS_ERROR_NOT_IMPLEMENTED;
  132. }
  133.  
  134. /* End of implementation class template. */
  135. #endif
  136.  
  137. // {{2587e382-1324-11d4-a652-eadbb2be3484}
  138. #define NS_HTTPINDEX_SERVICE_CID \
  139. { 0x2587e382, 0x1324, 0x11d4, { 0xa6, 0x52, 0xea, 0xdb, 0xb2, 0xbe, 0x34, 0x84 } }
  140. #define NS_HTTPINDEX_SERVICE_CONTRACTID \
  141.     "@mozilla.org/browser/httpindex-service;1"
  142. #define NS_HTTPINDEX_DATASOURCE_CONTRACTID \
  143.     "@mozilla.org/rdf/datasource;1?name=httpindex"
  144.  
  145. #endif /* __gen_nsIHTTPIndex_h__ */
  146.